home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libast / dlinked_list.h < prev    next >
C/C++ Source or Header  |  2005-10-18  |  2KB  |  52 lines

  1. /*
  2.  * Copyright (C) 1997-2004, Michael Jennings
  3.  *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a copy
  5.  * of this software and associated documentation files (the "Software"), to
  6.  * deal in the Software without restriction, including without limitation the
  7.  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  8.  * sell copies of the Software, and to permit persons to whom the Software is
  9.  * furnished to do so, subject to the following conditions:
  10.  *
  11.  * The above copyright notice and this permission notice shall be included in
  12.  * all copies of the Software, its documentation and marketing & publicity
  13.  * materials, and acknowledgment shall be given in the documentation, materials
  14.  * and software packages that this Software was used.
  15.  *
  16.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19.  * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  20.  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21.  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22.  */
  23.  
  24. #ifndef _LIBAST_DLINKED_LIST_H_
  25. #define _LIBAST_DLINKED_LIST_H_
  26.  
  27. /* Standard typecast macros.... */
  28. #define SPIF_DLINKED_LIST_ITEM(obj)                 (SPIF_CAST(dlinked_list_item) (obj))
  29. #define SPIF_DLINKED_LIST(obj)                      (SPIF_CAST(dlinked_list) (obj))
  30.  
  31. #define SPIF_DLINKED_LIST_ITEM_ISNULL(o)            (SPIF_DLINKED_LIST_ITEM(o) == SPIF_NULL_TYPE(dlinked_list_item))
  32. #define SPIF_OBJ_IS_DLINKED_LIST_ITEM(o)            (SPIF_OBJ_IS_TYPE((o), dlinked_list_item))
  33.  
  34. SPIF_DECL_OBJ(dlinked_list_item) {
  35.     SPIF_DECL_PROPERTY(obj, data);
  36.     SPIF_DECL_PROPERTY(dlinked_list_item, prev);
  37.     SPIF_DECL_PROPERTY(dlinked_list_item, next);
  38. };
  39.  
  40. SPIF_DECL_OBJ(dlinked_list) {
  41.     SPIF_DECL_PARENT_TYPE(obj);
  42.     SPIF_DECL_PROPERTY(listidx, len);
  43.     SPIF_DECL_PROPERTY(dlinked_list_item, head);
  44.     SPIF_DECL_PROPERTY(dlinked_list_item, tail);
  45. };
  46.  
  47. extern spif_listclass_t SPIF_LISTCLASS_VAR(dlinked_list);
  48. extern spif_vectorclass_t SPIF_VECTORCLASS_VAR(dlinked_list);
  49. extern spif_mapclass_t SPIF_MAPCLASS_VAR(dlinked_list);
  50.  
  51. #endif /* _LIBAST_DLINKED_LIST_H_ */
  52.